home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / bluej / bluejsetup-203.exe / {app} / lib / english / templates / method.tmpl < prev    next >
Text File  |  2004-12-19  |  225b  |  13 lines

  1. /**
  2.  * An example of a method - replace this comment with your own
  3.  *
  4.  * @param  y   a sample parameter for a method
  5.  * @return     the sum of x and y
  6.  */
  7. public int sampleMethod(int y)
  8. {
  9.     // put your code here
  10.     return y;
  11. }
  12.  
  13.